home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / SubObject.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  314 b   |  20 lines

  1.  
  2. /* $Id: SubObject.h,v 1.1.1.1 1993/03/18 03:36:09 davis Exp $ */
  3.  
  4. #import <objc/Object.h>
  5.  
  6. @interface SubObject:Object
  7. {
  8.   char    *stringValue;
  9. }
  10.  
  11. - init;
  12. - initFromString:(const char *)aString;
  13.  
  14. - setStringValue: (const char *)aString;
  15. - (const char *)stringValue;
  16.  
  17. - (BOOL)isAttachment;                /* Returns NO    */
  18.  
  19. @end
  20.